home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-Update.iso / CDROM / Basic Apps / The_NoSD_Submitter.app / mail.bat < prev    next >
Encoding:
DOS Batch File  |  1996-11-08  |  4.0 KB  |  175 lines

  1. #!/bin/sh
  2. #
  3. # E-mail files and folders from the command line or a non-NeXT computer.
  4. #
  5. # File description and history are at the end of this script (for speed).
  6. #
  7. PROG="`basename $0`"
  8. PATH=/usr/local/bin:/usr/ucb:/usr/bin:/bin
  9. export PATH
  10.  
  11. if test -z "${AWK}" ; then
  12.   AWK=awk
  13. fi
  14. CAT=cat
  15. MAIL="/usr/ucb/Mail"
  16. TAR="/usr/bin/gnutar cf -"
  17. UUENCODE=uuencode
  18.  
  19. TMPDIR=/tmp/${PROG}$$.dir
  20. TARFILE=${PROG}$$
  21. ATTACH=${TMPDIR}/${TARFILE}.attach
  22. INDEX=${TMPDIR}/index.rtf
  23. TMPFILE=/tmp/${PROG}$$
  24. USAGE="${PROG} [-] {files|folders} [addressee...]"
  25. PROMPT="echo -n"
  26.  
  27. #
  28. # Destroy temporary files and folders.
  29. #
  30. trap "/bin/rm -rf ${TMPDIR} ${TMPFILE} ; exit" 0 1 2 3 4 5 6 13 15
  31.  
  32. #
  33. # Cycle through command-line arguments.
  34. #
  35. while test $# != 0 ; do
  36.   case $1 in
  37.     - ) # Take a message.
  38.       echo "${PROG}: Enter mail message, terminated with single '.':"
  39.       while test 1 = 1 ; do
  40.     ${PROMPT} "> "
  41.         read INPUT
  42.     if test "${INPUT}" = '.' ; then
  43.       break
  44.     fi
  45.         MAILMESSAGE="${MAILMESSAGE} ${INPUT}"
  46.       done
  47.       ;;
  48.     -* ) # Unknown argument.
  49.       echo "${PROG}: Unknown argument $1."
  50.       ;;
  51.     * )    # File or addressee.
  52.       if test -r $1 ; then
  53.     TARGET="${TARGET} $1"
  54.     TDIR=`echo ${TARGET} | sed 's@/[^/]*$@@g'`
  55.     cd $TDIR
  56.     TARGET=`basename ${TARGET}`
  57.       else
  58.     ADDRESSEE="${ADDRESSEE} $1"
  59.       fi
  60.       ;;
  61.   esac
  62.   shift
  63. done
  64.  
  65. #
  66. # Quit if no files specified on the command line.
  67. #
  68. if test -z "${TARGET}" ; then
  69.   echo "${PROG}: No files to send." >&2
  70.   echo "${USAGE}" >&2
  71.   exit 1
  72. #
  73. # Insert generic message if MAILMESSAGE is empty.
  74. #
  75. elif test -z "${MAILMESSAGE}" ; then
  76.   MAILMESSAGE="This NeXTmail bundled by ${PROG}."
  77. else
  78. #
  79. # Prompt for ADDRESSEE if empty.
  80. #
  81.   while test -z "${ADDRESSEE}" ; do
  82.     ${PROMPT} "To: "
  83.     read ADDRESSEE
  84.   done
  85. fi
  86.  
  87. #
  88. # Create temporary directory to work in.
  89. #
  90. mkdir ${TMPDIR}
  91.  
  92. #
  93. # Create index.rtf file that includes MAILMESSAGE text.
  94. #
  95. cat << EOF > ${INDEX}
  96. {\rtf0\ansi{\fonttbl\f0\fswiss Helvetica;}
  97. \margl120
  98. \margr120
  99. \pard\tx533\tx1067\tx1601\tx2135\tx2668\tx3202\tx3736\tx4270\tx4803\tx5337\f0\b0\i0\ul0\fs24 ${MAILMESSAGE}
  100. EOF
  101.  
  102. #
  103. # Cycle through TARGET list and append attachment lines to index.rtf file.
  104. #
  105. for x in ${TARGET} ; do
  106.   echo "{{\attachment0 $x" >> ${INDEX}
  107.   echo "}" >> ${INDEX}
  108. done
  109.  
  110. #
  111. # End of index.rtf.
  112. #
  113. echo "}" >> ${INDEX}
  114.  
  115. #
  116. # Print an informative status message on stderr.
  117. #
  118. echo ${PROG}: Bundling ${TARGET} for shipment via NeXTmail to ${ADDRESSEE}. >&2
  119.  
  120. #
  121. # Create a tar'ed | compressed .attach file.
  122. #
  123. ${TAR} ${TARGET} -C ${TMPDIR} index.rtf | compress > ${ATTACH}
  124.  
  125. #
  126. # Go into the temporary folder.
  127. #
  128. cd ${TMPDIR}
  129.  
  130. #
  131. # Uuencode .attach file and give it a .tar.nnnn. prefix.
  132. #
  133. ${UUENCODE} ${ATTACH} .tar.$$.${TARFILE} > ${TMPFILE}
  134.  
  135. #
  136. # Add the Next-Attachment keyword.
  137. #
  138.  
  139. echo "Next-Attachment: .tar.$$.${TARFILE}, `wc -c ${ATTACH} | ${AWK} '{print $1}'`, 1/1, 9999, 0" > ${ATTACH}
  140. echo "" >> ${ATTACH}
  141.  
  142. #
  143. # Append the uuencoded file.
  144. #
  145. ${CAT} ${TMPFILE} >> ${ATTACH}
  146.  
  147. #
  148. # Deliver the mail via e-mail.
  149. #
  150. ${MAIL} -s "[NoSD/submission]:${TARGET}" ${ADDRESSEE} < ${ATTACH}
  151.  
  152. exit $?
  153.  
  154. # $Header: /Net/spa/Users/Source/Next/RCS/next-mail,v 1.3 1991/09/17 16:01:05 treed Exp $
  155. # Locker: $Locker:  $
  156. # Author and Modification Date: $Author: treed $ $Date: 1991/09/17 16:01:05 $
  157. # File name and Description: 
  158. # Send NeXTmail(c) from the command line.  This script can be used from a Next or
  159. # non-Next computer.  You may specify files and folders to send and recipients
  160. # to receive the e-mail; if the thing on the command line is not a folder or file,
  161. # then next-mail assumes that it is a recipient.  You may also specify a '-' and
  162. # type accompanying e-mail text when prompted.
  163. #
  164. # Feel free to distribute this script, just don't charge money for it.
  165. # Tim Reed <treed@gun.com>
  166. #
  167. # Copyright (c) 1991 Timothy Reed.  All rights reserved.
  168. # WARNING: You may use and distribute this software, but you use it at your own risk.
  169. #
  170. # This program is free software; you can redistribute it and/or modify it under the
  171. # terms of the GNU General Public LIcense as published by the Free Software Foundation.
  172. # This software comes with ABSOLUTELY NO WARRANTY.
  173. #
  174.